326f9d4bff532395ac74c5bb291d1ccfe6cdec1e,core/src/main/java/com/orientechnologies/orient/core/storage/impl/local/OStorageLocal.java,OStorageLocal,createRecord,#number#number[]#number#,555

Before Change



	public long createRecord(final int iClusterId, final byte[] iContent, final byte iRecordType) {
		checkOpeness();
		return createRecord(getClusterById(iClusterId), iContent, iRecordType);
	}

	public ORawBuffer readRecord(final ODatabaseRecord<?> iDatabase, final int iRequesterId, final int iClusterId,

After Change


	public long createRecord(final int iClusterId, final byte[] iContent, final byte iRecordType) {
		checkOpeness();

		final long clusterPosition = createRecord(getClusterById(iClusterId), iContent, iRecordType);
		incrementVersion();
		return clusterPosition;
	}